home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / dev / amos / AMOSL0495.lzh / AMOSLIST / 000011_amos-request@svcs1.digex.net_Tue Apr 4 20:22:23 1995.msg < prev    next >
Internet Message Format  |  1995-05-01  |  2KB

  1. Received: from svcs1.digex.net by nfs1.digex.net with SMTP id AA28555
  2.   (5.67b8/IDA-1.5); Tue, 4 Apr 1995 20:22:20 -0400
  3. Received: by svcs1.digex.net id AA26492
  4.   (5.67b8/IDA-1.5 for amos-out); Tue, 4 Apr 1995 14:23:38 -0400
  5. Received: from nfs1.digex.net by svcs1.digex.net with SMTP id AA26459
  6.   (5.67b8/IDA-1.5 for <amos@svcs1.digex.net>); Tue, 4 Apr 1995 14:21:06 -0400
  7. Received: from varano.ing.unico.it by nfs1.digex.net with SMTP id AA29865
  8.   (5.67b8/IDA-1.5 for <amos-list@access.digex.net>); Tue, 4 Apr 1995 14:20:30 -0400
  9. Received: by varano.ing.unico.it (5.65/DEC-Ultrix/4.3)
  10.     id AA10028; Tue, 4 Apr 1995 09:52:23 +0200
  11. Date: Tue, 4 Apr 1995 09:52:22 +0200 (MET DST)
  12. From: MeF <mfontana@varano.ing.unico.it>
  13. Sender: MeF <mfontana@varano.ing.unico.it>
  14. Reply-To: MeF <mfontana@varano.ing.unico.it>
  15. Subject: Double buffer problems (Was:flickering bobs)
  16. To: Ludwig <pl@soton.ac.uk>
  17. Cc: Amos List <amos-list@access.digex.net>
  18. In-Reply-To: <199504031053.LAA04623@alder.soton.ac.uk>
  19. Message-Id: <Pine.3.89.9504040903.A9454-0100000@varano.ing.unico.it>
  20. Mime-Version: 1.0
  21. Content-Type: TEXT/PLAIN; CHARSET=US-ASCII
  22. Status: O
  23. X-Status: 
  24.  
  25.  
  26.  
  27. [Program removed]
  28. > But my bobs are only being drawn on one of the pair of physical and
  29. > logical screens, so they flicker even worse! Whats missing? 
  30.  
  31. So Double buffer screens are quite difficult to manage, at least for me.
  32.  
  33. Depending on what you want to obtain try setting Autoback at the 
  34. beginning of your loop
  35.  
  36. Autoback 0: This redirect all the drawing commands to the logical screen
  37. I needs you to manually swap the logical and the physical screen to show 
  38. the changes.
  39.  
  40. Autoback 1: You should use this. This draw things on both the logical and 
  41. the physical screen. It is quite slow but it is very useful in many 
  42. situations.
  43.  
  44. Autoback 2: Try this, too. This syncronizes the screen update (screen swap) 
  45. with the updating of the bobs.
  46.  
  47. BTW: TURBO COMMANDS *ALWAYS* DRAW ON THE LOGICAL SCREEN!!!!!!!!!!!!!!!
  48.  
  49. I was getting mad after 2 hours of programming as the Turbo Extension 
  50. commands always wrote on the logical screen even with autoback 1!!
  51. I had to replace all the turbo commands with standard ones (not a great 
  52. difference thoug, they had to wite very little on the screen).
  53.  
  54. So be aware....
  55.  
  56. M&F
  57.